home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / fido / jm950618.lha / docs / fax / oldGPFaxInsts.txt < prev   
Text File  |  1994-03-17  |  2KB  |  51 lines

  1.  
  2.  Date: 08 Jan 94 08:39:03                        Message #315 
  3.  From: Todd Vierling                             Amiga Sysop Flames          
  4.  To:   Frank Perricone                                                       
  5.  Subj: Re: SupraFAX and FAXes                                                  
  6.  
  7. I'm in the U.S. and though I use a WPL mailer (JamMail) and trashed TrapDoor,
  8. I can give you a way that should definitely work, if your GPFax is v2.33 or
  9. newer amd you know how to write scripts (:>)...
  10.  
  11. 1) Make a script in REXX:, say RunFax.rexx, that reads the following:
  12.  
  13.   /* We need a comment or rx won't think we're an ARexx script. */
  14.   address 'REXX_GPFAX'
  15.   'openserial'
  16.   'fconreceive'
  17.   'closeserial'
  18.  
  19. 2) Make sure both TrapDoor and GPFax have SHARED use of the SAME serial device
  20. and unit. (TrapDoor has the command SHARED in its TrapDoor.cfg, and GPFax has
  21. a checkbox in its Environment settings.)
  22.  
  23. 3) Now make sure in your TrapDoor.cfg to have the following options set properly:
  24.  
  25.   FAXSTRING "+FCON"
  26.   FAXCOMMAND "rx RunFax"
  27.   MODEMINIT "~~AT+FDCC=1,5,0,2,0,0,0,5;+FLID=\"YOUR BBS HERE\";Z|~~~"
  28.   MODEMANSWER "~~AT+FAA=1;A|"
  29.  
  30. Of course you can replace whatever you want in the init/answer AFTER that +F
  31. commands (that is, after the last semicolon in each, where the Z and A are
  32. respectively). Also you can add the name of your BBS or whatever fax ID you
  33. want (up to 24 characters I believe) in the +FLID string.
  34.  
  35. 4) Now, in your BBS loader script, insert the following somewhere:
  36.  
  37.   run >NIL: GPFax:GPFax -S -Q
  38.  
  39. This will run GPFax in noserial, quiet mode (only the WB icon will appear).
  40. To actually have GPFax's screen open, remove the -Q.
  41.  
  42. If this method fails to work I see not why - I used this arrangement up until
  43. I switched to JamMail. The most important parts of this method are the setting
  44. of the +F commands in the INIT and ANSWER strings (especially +FAA in the
  45. answer, NOT init string)
  46. .
  47.  
  48.   - T\/
  49.  
  50.  
  51.